Tables [dbo].[Exchange_Rate]
Properties
PropertyValue
HeapYes
Row Count2
Created3:12:12 PM Friday, January 07, 2011
Last Modified11:40:02 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow NullsDefault
Indexes iExchange_RatepkCurrencyCode: CurrencyCodeCurrencyCodevarchar(3)3
No
('')
ExchangeRatenumeric(15,5)9
No
((0))
LastUpdateDatedatetime8
Yes
TIME_STAMPtimestamp8
Yes
Indexes Indexes
NameColumns
iExchange_RatepkCurrencyCodeCurrencyCode
Permissions
TypeActionOwning Principal
GrantDeleteIMIS
GrantInsertIMIS
GrantReferencesIMIS
GrantSelectIMIS
GrantUpdateIMIS
SQL Script
CREATE TABLE [dbo].[Exchange_Rate]
(
[CurrencyCode] [varchar] (3) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL CONSTRAINT [DF_Exchange_Rate_CurrencyCode] DEFAULT (''),
[ExchangeRate] [numeric] (15, 5) NOT NULL CONSTRAINT [DF_Exchange_Rate_ExchangeRate] DEFAULT ((0)),
[LastUpdateDate] [datetime] NULL,
[TIME_STAMP] [timestamp] NULL
) ON [PRIMARY]

GO
CREATE NONCLUSTERED INDEX [iExchange_RatepkCurrencyCode] ON [dbo].[Exchange_Rate] ([CurrencyCode]) ON [PRIMARY]
GO
GRANT REFERENCES ON  [dbo].[Exchange_Rate] TO [IMIS]
GRANT SELECT ON  [dbo].[Exchange_Rate] TO [IMIS]
GRANT INSERT ON  [dbo].[Exchange_Rate] TO [IMIS]
GRANT DELETE ON  [dbo].[Exchange_Rate] TO [IMIS]
GRANT UPDATE ON  [dbo].[Exchange_Rate] TO [IMIS]
GO
Uses
Used By